runtime.profBuf.hdrsize (field)

17 uses

	runtime (current package)
		profbuf.go#L95: 	hdrsize uintptr
		profbuf.go#L228: 	b.hdrsize = uintptr(hdrsize)
		profbuf.go#L231: 	b.overflowBuf = make([]uint64, 2+b.hdrsize+1)
		profbuf.go#L248: 	want := 2 + int(b.hdrsize) + nstk
		profbuf.go#L276: 	want := 2 + int(b.hdrsize) + nstk1
		profbuf.go#L288: 	want = 2 + int(b.hdrsize) + nstk2
		profbuf.go#L307: 	if len(hdr) > int(b.hdrsize) {
		profbuf.go#L360: 	if wd+2+int(b.hdrsize)+len(stk) > len(b.data) {
		profbuf.go#L367: 	data[0] = uint64(2 + b.hdrsize + uintptr(len(stk))) // length
		profbuf.go#L370: 	i := uintptr(copy(data[2:2+b.hdrsize], hdr))
		profbuf.go#L371: 	for ; i < b.hdrsize; i++ {
		profbuf.go#L375: 		data[2+b.hdrsize+uintptr(i)] = uint64(pc)
		profbuf.go#L382: 		new := old.addCountsAndClearFlags(skip+2+len(stk)+int(b.hdrsize), 1)
		profbuf.go#L470: 			dst[0] = uint64(2 + b.hdrsize + 1)
		profbuf.go#L472: 			for i := uintptr(0); i < b.hdrsize; i++ {
		profbuf.go#L475: 			dst[2+b.hdrsize] = uint64(count)
		profbuf.go#L476: 			return dst[:2+b.hdrsize+1], overflowTag[:1], false